net/http.http2FrameHeader.StreamID (field)

53 uses

	net/http (current package)
		h2_bundle.go#L1574: 	StreamID uint32
		h2_bundle.go#L1610: 	if h.StreamID != 0 {
		h2_bundle.go#L1611: 		fmt.Fprintf(buf, " stream=%d", h.StreamID)
		h2_bundle.go#L1650: 		StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
		h2_bundle.go#L1963: 					fh.Type, fh.StreamID,
		h2_bundle.go#L1966: 		if fh.StreamID != fr.lastHeaderStream {
		h2_bundle.go#L1969: 					fh.StreamID, fr.lastHeaderStream))
		h2_bundle.go#L1972: 		return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
		h2_bundle.go#L1980: 			fr.lastHeaderStream = fh.StreamID
		h2_bundle.go#L2009: 	if fh.StreamID == 0 {
		h2_bundle.go#L2138: 	if fh.StreamID != 0 {
		h2_bundle.go#L2273: 	if fh.StreamID != 0 {
		h2_bundle.go#L2311: 	if fh.StreamID != 0 {
		h2_bundle.go#L2376: 		if fh.StreamID == 0 {
		h2_bundle.go#L2381: 		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
		h2_bundle.go#L2435: 	if fh.StreamID == 0 {
		h2_bundle.go#L2467: 		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
		h2_bundle.go#L2574: 	if fh.StreamID == 0 {
		h2_bundle.go#L2627: 	if fh.StreamID == 0 {
		h2_bundle.go#L2655: 	if fh.StreamID == 0 {
		h2_bundle.go#L2709: 	if pp.StreamID == 0 {
		h2_bundle.go#L3046: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L3053: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L3086: 		if f.StreamID == 0 {
		h2_bundle.go#L5359: 			if id := res.f.Header().StreamID; id > sc.maxClientStreamID {
		h2_bundle.go#L5391: 	if sc.inGoAway && (sc.goAwayCode != http2ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) {
		h2_bundle.go#L5395: 				return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
		h2_bundle.go#L5436: 	if f.StreamID != 0 {
		h2_bundle.go#L5451: 	case f.StreamID != 0: // stream-level flow control
		h2_bundle.go#L5452: 		state, st := sc.state(f.StreamID)
		h2_bundle.go#L5469: 			return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
		h2_bundle.go#L5483: 	state, st := sc.state(f.StreamID)
		h2_bundle.go#L5494: 		sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
		h2_bundle.go#L5636: 	id := f.Header().StreamID
		h2_bundle.go#L5799: 	id := f.StreamID
		h2_bundle.go#L5812: 	if st := sc.streams[f.StreamID]; st != nil {
		h2_bundle.go#L5868: 		if err := sc.checkPriority(f.StreamID, f.Priority); err != nil {
		h2_bundle.go#L5974: 	if err := sc.checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
		h2_bundle.go#L5977: 	sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
		h2_bundle.go#L6030: 			return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
		h2_bundle.go#L6043: 		return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
		h2_bundle.go#L9556: 	cs := rl.streamByID(f.StreamID)
		h2_bundle.go#L9565: 			StreamID: f.StreamID,
		h2_bundle.go#L9594: 			StreamID: f.StreamID,
		h2_bundle.go#L9866: 	cs := rl.streamByID(f.StreamID)
		h2_bundle.go#L9872: 		if f.StreamID >= neverSent {
		h2_bundle.go#L9903: 			StreamID: f.StreamID,
		h2_bundle.go#L9911: 			StreamID: f.StreamID,
		h2_bundle.go#L9920: 				StreamID: f.StreamID,
		h2_bundle.go#L10122: 	cs := rl.streamByID(f.StreamID)
		h2_bundle.go#L10123: 	if f.StreamID != 0 && cs == nil {
		h2_bundle.go#L10138: 				StreamID: f.StreamID,
		h2_bundle.go#L10151: 	cs := rl.streamByID(f.StreamID)